home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World Interactive 1995 August / Personal Computer World (PCW Interactive) (August 1995).iso / system / dosmenu.bat < prev    next >
DOS Batch File  |  1995-06-05  |  2KB  |  163 lines

  1. :start
  2.  
  3. cls
  4. cd \
  5. colour +yellow,black
  6. box 0,0,80,25,0
  7. window 0,0,80,25
  8.  
  9. colour +yellow,red
  10. put 0,,"PCW INTERACTIVE - QUICK DOS MENU"
  11.  
  12. colour white,black
  13. put 2,1, "This menu system MUST be run from DOS. It's for those readers who don't have"
  14. put 3,1, "Windows, or can't get Windows to run some of the programs on this CD-Rom."
  15. colour +yellow, magenta
  16. put 24,, "Cursor Keys or mouse to Move - Return or click to Select - Esc to Quit"
  17.  
  18. rem ----------------------------------------------------------------------
  19.  
  20. window 0,0,80,25
  21. colour +white,blue,white
  22. box 5,20,40,18
  23. window 5,20,40,17
  24.  
  25. put 1, 1,"MSCDEX 2.23 Update"
  26. put 2, 1,"Bioforge Installation"
  27. put 3, 1,"CDTEST - CD Rom Diagnostics"
  28. put 4, 1,"Depth Dwellers"
  29. put 5, 1,"Gallery Photographs"
  30. put 6, 1,"PowerLan Installation"
  31. put 7, 1,"Pyrotechnica"
  32. put 8, 1,"Slipstream 5000"
  33. put 9, 1,"Snooper"
  34. put 10,1,"Star Trek - The Next Generation"
  35. put 11,1,"Super Street Fighter 2 Turbo"
  36. put 12,1,"Tag Quote"
  37. put 13,1,"Ticonderoga"
  38. put 14,1,"Tower Assault"
  39. put 15,1,"Vinyl Goddess From Mars"
  40. put 16,1,"Virtual Pool"
  41.  
  42. point 1,1,38,16
  43. set option = %?errorlevel%
  44. cls
  45. goto a%option%
  46.  
  47. :a0
  48.  
  49. goto end
  50.  
  51. :a1
  52.  
  53. cd \mscdex
  54. runme
  55. goto start
  56.  
  57. :a2
  58.  
  59. cd \demos\bio
  60. install
  61. goto start
  62.  
  63. :a3
  64.  
  65. \system\cdtest
  66. goto start
  67.  
  68. :a4
  69.  
  70. cd \share\games\depth\runable
  71. depth
  72. goto start
  73.  
  74. :a5
  75.  
  76. cd \gallery
  77. vgashow *.bmp
  78. goto start
  79.  
  80. :a6
  81.  
  82. cd \powerlan
  83. install
  84. goto start
  85.  
  86. :a7
  87.  
  88. cd \demos\pyro
  89. pyro
  90. goto start
  91.  
  92. :a8
  93.  
  94. cd \demos\slip
  95. demo
  96. goto start
  97.  
  98. :a9
  99.  
  100. cd \share\utils\snooper
  101. snooper
  102. goto start
  103.  
  104. :a10
  105.  
  106. cd \demos\startrek
  107. stprevu demo
  108. goto start
  109.  
  110. :a11
  111.  
  112. cd \demos\fighter2
  113. sf2
  114. goto start
  115.  
  116. :a12
  117.  
  118. cd \share\utils\syschk
  119. syschk
  120. goto start
  121.  
  122. :a13
  123.  
  124. cd \share\games\tagquote
  125. dostag
  126. echo.
  127. echo Press any key...
  128. pause >nul
  129. goto start
  130.  
  131. :a14
  132.  
  133. cd \demos\tico
  134. ticodemo
  135. goto start
  136.  
  137. :a15
  138.  
  139. cd \demos\tower
  140. ta
  141. mode co80
  142. goto start
  143.  
  144. :a16
  145.  
  146. cd \share\games\vinyl
  147. goddess
  148. echo.
  149. echo Press any key...
  150. pause >nul
  151. goto start
  152.  
  153. :a17
  154.  
  155. cd \demos\pool
  156. pool
  157. goto start
  158.  
  159. :end
  160.  
  161. cls
  162. stop
  163.